home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / bmgrep.arc / EXECUTE.C < prev    next >
Text File  |  1986-12-09  |  3KB  |  90 lines

  1. #include <stdio.h>
  2. #include "bm.h"
  3. #include "extern.h"
  4.  
  5. Execute(DescVec, NPats, TextFile, Buffer)
  6. register struct PattDesc *DescVec[];
  7. /* pointers to status vectors for the different
  8.  * patterns, including skip tables, position in buffer, etc. */
  9. register int NPats; /* number of patterns */
  10. register char Buffer[]; /* holds text from file */
  11. register int TextFile; /* file to search */
  12. {
  13.     int NRead, /* number of chars read from file */
  14.         NWanted, /* number of chars wanted */
  15.         NAvail, /* number of chars actually read */
  16.         BuffSize, /* number of chars in buffer */
  17.         BuffPos, /* offset of first char in Buffer in TextFile */
  18.         BuffEx, /* flag to indicate that buffer has been searched */
  19.         ResSize,
  20.         /* number of characters in the last, incomplete line */
  21.         Found, /* flag indicates whether pattern found
  22.         * completely and all matches printed */
  23.         Valid; /* was the match "valid", i.e. if -x used,
  24.         * did the whole line match? */
  25.     char *BuffEnd; /* pointer to last char of last complete line */
  26.  
  27.     /* misc working variables */
  28.     int i;
  29.  
  30.     /* initialize */
  31.     ResSize = 0;
  32.     Found = 0;
  33.     BuffPos = 0;
  34.     for (i=0; i < NPats; i++) {
  35.         DescVec[i] -> Success = 0;
  36.         DescVec[i] -> Start = Buffer;
  37.     } /* for */
  38.     /* now do the searching */
  39.     do {
  40.         /* first, read a bufferfull and set up the variables */
  41.         NWanted = MAXBUFF - ResSize; NRead = 0;
  42.         do {
  43.             NAvail =
  44.                read(TextFile,Buffer + ResSize + NRead, NWanted);
  45.             if (NAvail == -1) {
  46.                 fprintf(stderr,
  47.                   "bm: error reading from input file\n");
  48.                 exit(2);
  49.             } /* if */
  50.             NRead += NAvail; NWanted -= NAvail;
  51.         } while (NAvail && NWanted);
  52.         BuffEx = 0;
  53.         BuffSize = ResSize + NRead;
  54.         BuffEnd = Buffer + BuffSize - 1;
  55.         /* locate the end of the last complete line */
  56.         while (*BuffEnd != '\n' && BuffEnd >= Buffer)
  57.             --BuffEnd;
  58.         if (BuffEnd < Buffer)
  59.             BuffEnd = Buffer + BuffSize - 1;
  60.         while (!BuffEx) { /* work through one buffer full */
  61.             BuffEx = 1; /* set it provisionally, then clear
  62.             * it if we find the buffer non-empty */
  63.             for (i=0; i< NPats; i++) {
  64.                 if (!DescVec[i]->Success)
  65.                 /* if the pattern  has not been found */
  66.                     DescVec[i]-> Success =
  67.                     Search(DescVec[i]->Pattern,
  68.                     DescVec[i]->PatLen, BuffEnd,
  69.                     DescVec[i]->Skip1, DescVec[i]->Skip2,
  70.                     DescVec[i]);
  71.                 if (DescVec[i]->Success){
  72.                 /* if a match occurred */
  73.                     BuffEx = 0;
  74.                     Valid = MatchFound(DescVec[i],BuffPos,
  75.                     Buffer, BuffEnd);
  76.                     Found |= Valid;
  77.                     if ((sFlag || lFlag) && Found)
  78.                         return(0);
  79.                 } /* if */
  80.             } /* for */
  81.         } /* while */
  82.         if(NRead) {
  83.             ResSize = MoveResidue(DescVec,NPats,Buffer,
  84.             Buffer+BuffSize-1);
  85.             BuffPos += BuffSize - ResSize;
  86.         } /* if */
  87.     } while (NRead);
  88.     return(!Found);
  89. } /* Execute */
  90.